import { SliderField, Text } from '@aws-amplify/ui-react';
import * as React from 'react';
const userFeedback = [
'Strongly disagree',
'Disagree',
'Neutral',
'Agree',
'Strongly agree',
];
export const SliderFieldAriaExample = () => {
const [index, setIndex] = React.useState(2);
return (
<>
{userFeedback[index]}
>
);
};